/*
 * Self-hosted brand fonts.
 *
 * These were loading from Google Fonts and NOT ARRIVING. The stylesheet was
 * correctly enqueued and WordPress emitted its dns-prefetch, but one of the
 * two optimisers on this site stripped the <link> before output. The
 * combined CSS had zero @font-face rules, so every visitor was being served
 * the Arial fallback instead of Montserrat and Open Sans. The site was not
 * using its own brand typefaces at all.
 *
 * Self-hosting fixes it properly rather than fighting a cache plugin, and is
 * better regardless: nothing for an optimiser to drop, no cross-origin round
 * trip before text can render, and no third party told who reads the site,
 * which matters when the Privacy Policy lists who sees what.
 *
 * ONE FILE PER FAMILY, NOT ONE PER WEIGHT. Google serves these as variable
 * fonts: the three Montserrat weights came back byte-identical, as did the
 * three Open Sans. Requesting them separately downloaded the same file six
 * times for 253 KB. One file each with a weight RANGE is 84 KB and covers
 * every weight in the family, including ones the design does not use yet.
 *
 * Latin subset only. Both families are SIL Open Font License, which permits
 * self-hosting.
 */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/montserrat-var.woff2') format('woff2-variations'),
       url('../fonts/montserrat-var.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: 'Open Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../fonts/open-sans-var.woff2') format('woff2-variations'),
       url('../fonts/open-sans-var.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;
}
