/* Frontsite typeface: Montserrat, self-hosted.
 *
 * Self-hosted rather than linked from fonts.googleapis.com so the public site
 * has no third-party dependency in its critical render path, and so no visitor
 * request is made to Google before they have consented to anything.
 *
 * ONE VARIABLE FONT PER SUBSET, NOT ONE FILE PER WEIGHT
 * ----------------------------------------------------
 * Google serves Montserrat as a variable font: requesting 400/500/600/700
 * returns the same woff2 four times under four URLs. Shipping them as four
 * static weights would be 433KB to deliver 108KB of glyphs. Instead each
 * subset is stored once and declared over the weight RANGE it covers, so any
 * weight between 400 and 700 renders from the single file - including the
 * in-between values (500) that the old static set could not produce at all.
 *
 * Replaces Josefin Sans (display), Open Sans (body) and Lora (serif accents),
 * which together were 396KB. Their files were removed in the same change; if a
 * serif accent is wanted back for .fs-kicker / .fs-flow-no, restore just the
 * Lora pair rather than re-adding all three.
 *
 * The subsets match what the previous set shipped: latin and latin-ext only.
 * Cyrillic, Greek and Vietnamese are deliberately not carried - the site has no
 * content in those scripts, and unicode-range means a browser only downloads a
 * subset when the page actually contains characters from it.
 */

/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(../fonts/montserrat-variable-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(../fonts/montserrat-variable-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;
}
