/*
 * Self-hosted Google Fonts.
 *
 * Why: third-party fonts (fonts.gstatic.com) are frequently blocked by
 * browser extensions, corporate firewalls, and privacy tools — each of
 * which silently breaks the site's typography. Self-hosting from /fonts/
 * makes the fonts come from the same origin as the rest of the app, so
 * they're as reliable as the HTML itself, and CSP only needs 'self'.
 *
 * The .woff2 files live in public/fonts/. They are downloaded once via
 * scripts/fetch-fonts.ps1 (Windows) or scripts/fetch-fonts.sh (Mac/Linux)
 * — see those scripts for what's downloaded and from where. Re-run them
 * if you change the family list or want newer Google Fonts revisions.
 *
 * Only the Latin subset is included. If you need other writing systems,
 * add the corresponding unicode-range entries and download the matching
 * font files.
 */

/* DotGothic16 — used for display headings (--ak-font-display) */
@font-face {
  font-family: 'DotGothic16';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/dotgothic16-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+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Share Tech Mono — used for body text (--ak-font-body) */
@font-face {
  font-family: 'Share Tech Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/share-tech-mono-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+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
