/* Self hosted Latin subsets of Instrument Serif and Manrope. Both are
   SIL Open Font License 1.1, so self hosting is permitted.

   Self hosted rather than loaded from a third party CDN because it removes
   a render blocking cross origin request and keeps the site working for buyers on networks where
   third party font hosts are slow or blocked.

   The display face is optional so a slow connection receives the platform
   serif immediately rather than a late font swap that delays the hero paint.
   Normal connections still receive the self hosted face from preload. The
   body face uses swap because its broad readability role justifies it.

   Accia Piano is the licensed brand display face. Once the webfont licence
   is purchased from Mint Type, add its @font-face here under the family
   name "Accia Piano" and it takes over automatically: it already sits
   first in the --font-display stack in tokens.css. Nothing else changes. */

@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url("InstrumentSerif-400.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: optional;
  src: url("InstrumentSerif-400-italic.woff2") format("woff2");
}

/* Manrope ships as a variable font, so one file covers 400 to 700. */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("Manrope-variable.woff2") format("woff2");
}
