/* The display face alone — for the public calculator pages. Step 66.
 *
 * SEPARATE FROM `fonts.css` BECAUSE THE TOOLS PAGES HAVE A DIFFERENT RULE, and it predates this
 * change. `lib/brand.test.ts` states it: "Body copy stays on device fonts so the bulk of the page
 * cannot shift while a webfont arrives" — these pages are entered cold from a search result and
 * judged on how fast the answer appears, so only the headings get a webfont and Public Sans and
 * IBM Plex Mono must not be requested at all.
 *
 * Serving them `fonts.css` would have DECLARED all five faces here. In practice a browser fetches
 * only the faces a rule actually matches, so nothing extra would have downloaded — but the rule
 * would then have rested on that subtlety rather than on the page's own stylesheet, and the test
 * that guards it would have had nothing left to read. A second file keeps the rule visible.
 *
 * Licence: SIL Open Font License 1.1. Barlow Condensed, by Jeremy Tribby.
 */

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/barlow-condensed-600.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/barlow-condensed-700.woff2") format("woff2");
}
