/* ==========================================================================
   Quirk — Webfonts
   --------------------------------------------------------------------------
   NOTE: The Quirk wordmark is custom lettering. These Google Font families are
   close brand-voice substitutes used for system UI & specimens:
     • Bricolage Grotesque — display / headlines (warm, characterful grotesque)
     • Hanken Grotesk       — body / UI (friendly, neutral, highly legible)
     • Space Mono           — labels / mono accents
   Replace with licensed brand fonts when available.
   ========================================================================== */

/* Bricolage Grotesque's non-700 weights still come from the CDN. Hanken Grotesk (400/700)
   and Space Mono (400) are now self-hosted from uploaded brand files; CDN covers the
   remaining Hanken weights and Space Mono 700. Self-hosted faces override the CDN at
   matching weights. */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Hanken+Grotesk:wght@400..800&family=Space+Mono:wght@400;700&display=swap');

/* Bricolage Grotesque — Bold (700), self-hosted brand file */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/BricolageGrotesque-Bold.ttf') format('truetype');
}

/* Hanken Grotesk — body / UI, self-hosted brand files */
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/HankenGrotesk-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/HankenGrotesk-Bold.ttf') format('truetype');
}

/* Space Mono — labels / mono accents, self-hosted brand file */
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/SpaceMono-Regular.ttf') format('truetype');
}
