/* SELF-HOSTED BRAND FONTS (Ruling 9).
   Speed: a third-party font request is a render-blocking CROSS-ORIGIN round trip, and this site's
   GEO/AEO rests on being fast. Privacy: Google Fonts has taken adverse EU rulings on IP transfer.

   These are the SAME variable TTFs the card engine uses (design-engine/fonts/), subsetted to the
   glyphs this site actually renders and packed as woff2. Raw TTF would have been 1,421 KB — SLOWER
   than the Google Fonts link we are removing, which defeats the entire point of Ruling 9. Packaged:
   163 KB.

   The ITALIC is a real font, not a synthetic oblique. The site uses italic Cormorant in 11 places —
   the gold <em> on every headline, and the 3rem gold pull figure. Faux-obliquing a signature element
   to save one request would be a false economy. */

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/static/fonts/CormorantGaramond-var.woff2') format('woff2');
  font-weight: 300 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/static/fonts/CormorantGaramond-Italic-var.woff2') format('woff2');
  font-weight: 300 700; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cinzel';
  src: url('/static/fonts/Cinzel-var.woff2') format('woff2');
  font-weight: 400 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('/static/fonts/Jost-var.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}
