/* Redofy self-hosted font declarations.
 *
 * The marketing surface uses Bricolage Grotesque (headings) + Exo
 * (body). Loading them directly from Google Fonts would add a
 * render-blocking CSS request to a third-party CDN — bad for both
 * Core Web Vitals (LCP) and GDPR (Google sees every visitor's IP).
 *
 * Strategy:
 *   1. local() probes pick up a system-installed copy when present
 *      (designer macs may have Exo installed locally).
 *   2. url(*.woff2) falls back to the self-hosted file in /fonts/.
 *      Drop the woff2 files in next to this CSS — see README.md.
 *   3. font-display:swap means the system stack renders immediately
 *      and the web font swaps in once loaded; never a FOIT.
 *   4. unicode-range narrows Exo to the Latin + Latin-Ext block we
 *      actually need so the font file stays under ~30 KB gzipped.
 */

/* Exo — body text. 100–900. */
@font-face {
  font-family: 'Exo Variable';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: local('Exo Variable'), local('Exo'),
       url('/fonts/exo-latin-wght-normal.woff2') format('woff2-variations'),
       url('/fonts/exo-latin-wght-normal.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;
}

/* Bricolage Grotesque — headings. 400/500/600/700/800. */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: local('Bricolage Grotesque'),
       url('/fonts/bricolage-grotesque-var.woff2') format('woff2-variations'),
       url('/fonts/bricolage-grotesque-var.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;
}
