/* ============================================================
   persona-fonts.css — THE ONE PLACE FONTS COME FROM.

   Every page links to this file and to nothing else for type. Before it existed, all 31
   pages each carried their own Google Fonts <link>, and they had already drifted into two
   different URLs — persona-portal.html was not loading the Hebrew font at all.

   TO CHANGE A TYPEFACE:
     1. the family NAME lives in persona-tokens.css  (--font-body / --font-display /
        --font-mono / --font-hebrew). That is a one-line edit.
     2. the FILES it loads live here.

   ── SELF-HOSTING (not done yet — see tools/fetch-fonts.sh) ──────────────────────────────
   This still fetches from Google's CDN, which means:
     • every visitor's IP address is sent to Google on every page load (a GDPR exposure;
       a Munich court fined a site operator for exactly this in 2022),
     • your typography depends on Google's uptime,
     • and `display=swap` reflows the page when the real font arrives — which is what made
       the masonry grid overlap its own cards.

   Run `bash tools/fetch-fonts.sh` to download the files, then `python3 tools/font-metrics.py`
   to replace this @import with local @font-face rules AND metric-matched fallbacks that make
   the swap cause zero layout shift. Both scripts are in the repo and documented.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@500;600;700;800&family=Inter:wght@400;500;600;700&family=Heebo:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500&display=swap');
