/*
Self-hosted font faces (PRD-site.md §9 CWV requirements — no external font host,
so nothing here can violate the prod CSP's font-src 'self').

Font files are not in the repo yet — drop actual .woff2 files under
static/fonts/ before shipping. Until then the --font-display/body/ui stacks
in tokens.css fall through to their system fallbacks, so the page still
renders correctly, just not in the real typefaces.
*/

@font-face {
  font-family: 'Bricolage Grotesque';
  src: url("/static/fonts/bricolage-grotesque.b7df97614c8e.woff2") format('woff2');
  font-weight: 600 800;
  font-display: swap;
}

@font-face {
  font-family: 'Source Serif 4';
  src: url("/static/fonts/source-serif-4.62f0a26ced41.woff2") format('woff2');
  font-weight: 400 500;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url("/static/fonts/inter.65850a373e25.woff2") format('woff2');
  font-weight: 400 600;
  font-display: swap;
}
