/* Self hosted copies of the three faces the New Age theme asks for.
 *
 * The theme's own <head> pulled these from fonts.googleapis.com. That cannot
 * work here: _headers sets `default-src 'none'`, font-src has no value of its
 * own and so inherits it, and the browser refuses the file. Every page would
 * fall back to Segoe UI and look like the thing it replaced.
 *
 * So the woff2 files sit in ../fonts/ and load as 'self'. Downloaded from
 * Google Fonts on 2026-08-21. All three are SIL Open Font License 1.1, which
 * permits redistribution as long as the files are not sold on their own.
 *
 * unicode-range is the latin subset only, copied from the CSS Google itself
 * served. Only the latin file was taken, so anything outside this range must
 * fall through to a system font rather than render as empty boxes.
 */

/* Variable font: one file covers the whole 200..1000 axis, confirmed by
   reading its fvar table. A single @font-face with a weight RANGE is the
   correct declaration. Repeating five fixed-weight blocks at the same src,
   which is the shape Google's own CSS uses, would pin every weight to the
   axis default of 200 and lose the bold entirely. */
@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("../fonts/mulish-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Static, usWeightClass 600. The theme uses it for the masthead headline. */
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/newsreader-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Static, usWeightClass 400. The theme's .font-alt, used on the brand and on
   section headings. */
@font-face {
  font-family: "Kanit";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/kanit-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
