/*
 * Self-hosted replacements for the Google Fonts API families the original site
 * loaded through webfont.js.
 *
 * The live site requested EIGHT families (Oswald, Bebas Neue, DM Serif Display,
 * Odibee Sans, Playfair Display, Roboto, Teko, ZCOOL KuaiLe) but its stylesheet
 * only ever references TWO of them — Oswald and Roboto. The other six were
 * downloaded on every page view and never rendered a glyph, so they are simply
 * not carried over; nothing on the page changes.
 *
 * Both are variable fonts covering the full weight range the original requested
 * (Oswald 200-700, Roboto 300-700), so every weight the design uses resolves to
 * the same typeface as before.
 */

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-display: swap;
  font-weight: 200 700;
  src: url("/fonts/oswald-latin-wght-normal.woff2") format("woff2-variations");
  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;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/fonts/roboto-latin-wght-normal.woff2") format("woff2-variations");
  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;
}

@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-display: swap;
  font-weight: 100 900;
  src: url("/fonts/roboto-latin-wght-italic.woff2") format("woff2-variations");
  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;
}
