/* ============================================================
   Self-hosted webfonts for the apparel store.
   Was: three <link> tags to fonts.googleapis.com / fonts.gstatic.com in every
   store page. Two reasons those had to go, and only one of them is policy:
     1. The server sends `style-src 'self'; font-src 'self'`, so the Google
        stylesheet is BLOCKED outright once the store is served from this
        origin — the pages would have rendered in Georgia/Arial fallbacks.
     2. Standing rule: own the infrastructure. No third-party CDN on a client's
        site, and no customer's browser announcing itself to a third party on
        every page view.
   Latin subset only, because that is the only range this store's copy uses.
   Playfair Display and Jost ship as VARIABLE files — one download covers the
   whole weight range, which is why there are three files and not six.
   ============================================================ */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("/shop/assets/fonts/cormorant-garamond-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("/shop/assets/fonts/playfair-display-500-600.woff2") format("woff2");
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("/shop/assets/fonts/jost-400-600.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}
