/* Self-hosted brand webfonts.
   ---------------------------------------------------------------------------
   Replaces the retired assets/css/brand-fonts.css (290 KB of base64) and the
   Google Fonts <link>. Both files are the *same* subset Google was serving --
   they were extracted from brand-fonts.css, which had embedded each variable
   font three times over (once per weight) for 290 KB of render-blocking,
   gzip-resistant, separately-uncacheable CSS.

   Both faces are variable, so one file per family covers every weight the site
   asks for:
     Baloo 2  wght 400-800  (site uses 500/600/700/800)
     Nunito   wght 200-1000 (site uses 400/600/700/800)

   Total on the wire: ~70 KB, cacheable, and preloaded in parallel with this
   stylesheet by the <link rel="preload"> tags in cf/templates/header.cfm.

   Note: the subset is Latin-1 + common punctuation. Arrow glyphs (U+2190/2192)
   and the check mark (U+2713) are NOT in it and fall back to a system font --
   the same behaviour as the Google-hosted subset, so this is not a regression.
*/

@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/baloo2-var.woff2') format('woff2');
}

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url('/assets/fonts/nunito-var.woff2') format('woff2');
}
