/* Self-hosted, Latin-subset-only variable fonts. Replaces the Google
   Fonts stylesheet (fonts.googleapis.com -> fonts.gstatic.com), which
   was two extra cross-origin round trips sitting directly in the
   render-blocking critical path before any paint could happen. Both
   files below are the real Inter v20 / JetBrains Mono v24 variable
   fonts Google itself serves - same bytes, just fetched from this
   origin instead of two others, and restricted to the Latin unicode
   range since every visitor here is a US roofing contractor. Weights
   used across the site (400/500/600/700 Inter, 400/500/600 mono) are
   all instances of these two files, not separate downloads. */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-var-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;
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url('/assets/fonts/jetbrains-mono-var-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;
}
