/* Self-hosted Unbounded + Inter (Latin subset only — the site is EN-first,
   see project memory), replacing the Google Fonts CDN <link> in index.html.
   Both files are the variable-font woff2 Google itself serves (its own
   css2 endpoint declares the SAME url under several font-weight values —
   that's Google's own delivery quirk, not a range the browser needs
   spelled out repeatedly), so one @font-face per family with a
   `font-weight: <min> <max>` range covers every weight tokens.css asks for.
   Reason for self-hosting: a screenshot comparison showed the "?" glyph
   rendering differently between two viewing contexts — most likely one of
   them silently fell back past Unbounded to Inter/system-ui (an ad-blocker,
   a network hiccup, anything that can make the CDN <link> fail open with no
   visible error). Serving the font from the same origin as everything else
   removes that entire failure class. */

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("../assets/fonts/unbounded-latin.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;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/inter-latin.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;
}
