/* thatjonas.com - self-hosted fonts. No Google CDN request is ever made:
   the shipped CSP is font-src 'self', and a CDN font would also leak every
   visitor's IP to a third party.

   Both families are served by Google as a single VARIABLE woff2 per family
   (weight 700 and 800 of Big Shoulders Display resolve to the same file URL,
   as do 400 and 600 of Hanken Grotesk), so one file covers the whole range.
   Latin subset only - this site is English. */

/* Big Shoulders Display - the wordmark and all headings (tall condensed caps) */
@font-face{
  font-family:'Big Shoulders Display';
  font-style:normal;
  font-weight:700 800;
  font-display:swap;
  src:url(assets/fonts/big-shoulders-display-latin.woff2) format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Hanken Grotesk - body text and labels */
@font-face{
  font-family:'Hanken Grotesk';
  font-style:normal;
  font-weight:400 600;
  font-display:swap;
  src:url(assets/fonts/hanken-grotesk-latin.woff2) format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
