/* ============================================================
   DNX Experience: font faces, self-hosted.

   The design system's own tokens/fonts.css pulls these three
   families from the Google Fonts CDN. This page must not: its
   CSP is font-src 'self', and a CDN round-trip is a render-
   blocking dependency on someone else's uptime. Same families,
   same versions, served from our own origin.

   Questrial  - display/headings (the web stand-in for Stolzl
                Book, which is licensed and not web-embeddable)
   Lexend     - body copy (variable, 200-700)
   Mulish     - secondary/supporting text (variable, 300-700)
   ============================================================ */

@font-face {
  font-family: 'Questrial';
  src: url('./questrial-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  /* swap, not block: the page is legible in the fallback stack, and a blank
     page while a local font loads is a worse trade than one reflow. */
  font-display: swap;
}
@font-face {
  font-family: 'Lexend';
  src: url('./lexend-latin-wght-normal.woff2') format('woff2-variations');
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('./mulish-latin-wght-normal.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
