/* ── Self-hosted webfonts ──────────────────────────────────────────────────
 *
 * Replaces the Google Fonts CDN <link> that index.html and dev/index.html used
 * to carry. Every visitor's IP address was being sent to Google on every page
 * load — which a German court (LG München, 2022) held to breach the GDPR
 * without consent, and which our own Privacy Policy did not disclose: its
 * sub-processor table lists Google only for Gmail/support email. Self-hosting
 * removes the third-party request entirely, so there is nothing to disclose.
 * Recommendation 2 in legal/LICENSE-HYGIENE.md.
 *
 * All three families are SIL Open Font License 1.1, which expressly permits
 * redistribution and self-hosting. OFL 1.1 also REQUIRES that the licence text
 * and copyright notice accompany any redistributed copy — and serving these
 * files from our own domain IS redistribution, an obligation that sat with
 * Google while we used the CDN. Satisfied by, and do not delete:
 *
 *   OFL-Inter.txt          Copyright 2020 The Inter Project Authors
 *   OFL-Orbitron.txt       Copyright 2018 The Orbitron Project Authors
 *                          — Reserved Font Name: "Orbitron"
 *   OFL-ShareTechMono.txt  Copyright 2012 Carrois Type Design,
 *                          Ralph du Carrois — Reserved Font Name: "Share"
 *
 * The two Reserved Font Names mean a MODIFIED build of those families may not
 * keep the name. We ship Google's unmodified builds, so this does not bite —
 * but it would if anyone ever subsets or re-hints these files locally.
 *
 * These are Google's own VARIABLE builds, so one file covers a whole weight
 * range — orbitron-var-latin.woff2 is 11.5 KB for weights 400–900, where the
 * four static cuts it replaces would have been four separate downloads. The
 * @font-face descriptors below (weight ranges, unicode-ranges, font-display)
 * are copied verbatim from the CSS Google was serving, so text renders and
 * subsets exactly as it did before — this is a delivery change, not a visual one.
 *
 * Served from public/, so the URLs are absolute /fonts/… and resolve from any
 * route depth, and the files are same-origin — which is what lets the CSP in
 * vercel.json keep BOTH style-src and font-src at 'self', with no CDN origin
 * allow-listed in either.
 *
 * Linked from index.html AND dev/index.html. Kept as a plain file in public/
 * rather than a bundled stylesheet precisely so both entry points can share one
 * copy: the dev harness is deliberately outside the Vite build graph.
 */

/* Inter — UI/body text. Variable, weights 400–800. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(/fonts/inter-var-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 800;
  font-display: swap;
  src: url(/fonts/inter-var-latin-ext.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;
}

/* Orbitron — display/brand face (logo wordmark, headings). Variable, 400–900. */
@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url(/fonts/orbitron-var-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;
}

/* Share Tech Mono — the Gonzrifier's body font. Single weight, not variable. */
@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+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
