/* ==========================================================================
   Brand fonts — served from Statamic origin so URLs resolve in both dev and
   prod (Vite dev server doesn't serve public/ assets).

   Satoshi (body / label) — Fontshare, free.
   PP Eiko (display / headings) — Pangram Pangram, licensed. Currently only the
   Regular cut is installed; the single @font-face below covers weights 100-900
   so queries for Light (300) / Medium (500) still resolve to Regular until
   those cuts are dropped in.
   ========================================================================== */

@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/satoshi/Satoshi-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/satoshi/Satoshi-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/satoshi/Satoshi-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "PP Eiko";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src:
    url("/assets/fonts/pp-eiko/PPEiko-Regular.woff2") format("woff2"),
    url("/assets/fonts/pp-eiko/PPEiko-Regular.woff") format("woff");
}

:root {
  --font-sans: "Satoshi", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "PP Eiko", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}
