/**
 * The three faces of the FhWebsiteV2 theme, all served from this application.
 *
 * Bricolage Grotesque and Inter came from fonts.googleapis.com until task 8. Both carry
 * the SIL Open Font License, which permits hosting them; the licence text for each sits
 * beside the woff2 files in wwwroot/FhWebsiteV2/fonts/. Serving them here removes a
 * render-blocking request to a third party and stops every visitor's IP address reaching
 * Google before the page paints.
 *
 * Proxima Nova is licensed rather than open, and re.web already shipped these woff2 files
 * under /css/ for the older sites. Nothing new is published by pointing at them.
 *
 * Both open faces are variable fonts, one file per subset covering weights 300-800.
 * Requesting discrete weights instead would have meant five files per subset for Inter.
 * Only latin and latin-ext are carried: the site is in English, and latin-ext covers the
 * accented place and guest names that do appear.
 *
 * The unicode-range on each rule is Google's own subset definition, kept verbatim. It is
 * what lets the browser skip the latin-ext download for a page with no accented text.
 */

/* ---- Bricolage Grotesque: display headings ---- */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/fonts/bricolage-grotesque-latin.woff2") format("woff2");
  font-weight: 300 800;
  font-stretch: 75% 100%;
  font-style: normal;
  font-display: swap;
  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: "Bricolage Grotesque";
  src: url("/fonts/bricolage-grotesque-latin-ext.woff2") format("woff2");
  font-weight: 300 800;
  font-stretch: 75% 100%;
  font-style: normal;
  font-display: swap;
  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;
}

/* ---- Inter: body copy ---- */

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-latin.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
  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: "Inter";
  src: url("/fonts/inter-latin-ext.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
  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;
}

/* ---- Proxima Nova: nav, buttons and eyebrow labels ----
   One family across three weights, unlike the per-weight family names in the older
   per-site custom.css files. `--font-ui` in tokens.css asks for weights, not for three
   separate families. */

@font-face {
  font-family: "Proxima Nova";
  src: url("/css/proximanova-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("/css/proximanova-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova";
  src: url("/css/proximanova-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
