/* Self-hosted Geist / Geist Mono (issue #95). tokens.css used to pull
 * both families from fonts.googleapis.com with an `@import url(...)`.
 * That made every cold load of this template — and every app that
 * copies it, per ADR-0002 — wait on a third-party, render-blocking
 * request before any text could paint.
 *
 * apps/scorecard hit the same problem and fixed it for its own copy
 * under issue #84; this file, and the identical copies in
 * apps/example/src/styles/ and apps/docs/src/styles/, bring this
 * root template and its other two consumers back in sync with that
 * fix. The files in ./fonts/ are the same woff2 subsets apps/scorecard
 * self-hosts, so nothing about the rendered result changes.
 *
 * What is shipped, and why only this much:
 *
 * - Subsets: latin and latin-ext only. Google also serves cyrillic,
 *   cyrillic-ext and vietnamese; this design system's own copy is
 *   English UI text, so latin-ext is the widest coverage worth the
 *   16 KB. `unicode-range` is kept, so a browser only downloads
 *   latin-ext if the page actually needs it.
 *
 * - Geist: one variable file spanning `400 700`. components.css uses
 *   400 (body), 500, 600 and 700 and nothing outside that range, so
 *   the axis is declared over exactly that span rather than the
 *   300-900 the old CDN import asked for.
 *
 * - Geist Mono: weight 400 only — nothing in components.css sets a
 *   mono weight. If a bold mono ever appears, add the weight here
 *   rather than letting the browser synthesize it.
 *
 * Regenerate by re-requesting the same css2 URLs:
 *   https://fonts.googleapis.com/css2?family=Geist:wght@400..700&display=swap
 *   https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400&display=swap
 * ...with a modern browser User-Agent (Google serves ttf to unknown
 * agents), then take the latin and latin-ext blocks. */

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./fonts/geist-latin-400-700.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: "Geist";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./fonts/geist-latin-ext-400-700.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/geist-mono-latin-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;
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/geist-mono-latin-ext-400.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
