/*
 * signet-cloud — self-hosted webfonts for the ledger design system (D128).
 *
 * Hanken Grotesk carries the voice (500-700 body, 900 display); Space Mono
 * carries every machine value. Extracted from the marketing site's
 * `site/design-src/fonts-inline.css`, where the same latin subsets ship as
 * base64 data URIs — so both surfaces render the identical glyphs.
 *
 * Two deliberate differences from that file:
 *   1. FILES, not data URIs. The console links its CSS from /public; ~250KB of
 *      base64 in a render-blocking stylesheet is worse than a cacheable,
 *      parallel fetch that `font-display: swap` already covers.
 *   2. ONE Hanken Grotesk face. The source declares five weights, each carrying
 *      a byte-identical payload — it is the VARIABLE font (wght axis 100-900,
 *      confirmed via its fvar table), inlined five times. Declared once here at
 *      `font-weight: 500 900`, which is 139KB less over the wire and renders
 *      every weight in the design system natively rather than synthetically.
 *
 * This file is deliberately NOT part of signet-tokens.css: that file's contract
 * is that nothing is ever fetched, so the engine can inline it verbatim into an
 * air-gapped console. Webfonts are a Signet Cloud concern; the --sg-font stacks
 * fall back to system faces wherever this file is absent.
 */

@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url("/fonts/hanken-grotesk-variable.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: "Space Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/space-mono-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: "Space Mono";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/space-mono-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;
}
