/* fonts.css — First Light self-hosted webfaces (latin subset, variable woff2).
 *
 * Served same-origin from /assets/fonts/ (copied there by scripts/build-worker-assets.js). The manifest
 * `head.links` preloads the two woff2 files and links this sheet; the `font.sans` / `font.display`
 * visual tokens name these families. No external CDN — the whole face ships with the app.
 *
 * Inter    — the UI/text face (weight axis 400–700).
 * Fraunces — the display/heading face (soft serif, weight axis 400–700, optical size fixed for UI).
 */
@font-face {
  font-family: "Inter var";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces var";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  font-optical-sizing: auto;
  src: url("/assets/fonts/fraunces-latin-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
