/*
 * Cocoa Atelier — self-hosted brand fonts.
 *
 * Playfair Display (editorial serif headlines — the design's headline-lg /
 * headline-md / headline-sm roles) + Inter (body copy, UI labels, the tracked
 * label-caps buttons and the price-display style) both ship as real
 * self-hosted .woff2 vendored from the curated 6-family allowlist — no font
 * CDN on the storefront critical path (Lighthouse SEO >= 95 invariant).
 * Playfair Display is a single variable-weight latin subset file, so one
 * @font-face declares the whole 400-700 range the design uses (including the
 * italic-styled "The Journal" heading, which is synthesised by the browser —
 * the subset ships upright only). Each family ships its OFL LICENSE.txt
 * alongside the .woff2.
 */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter/inter-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter/inter-medium.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("../fonts/inter/inter-bold.woff2") format("woff2");
}

/* Playfair Display — variable-weight latin subset (covers 400-700, upright). */
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/playfair-display/playfair-display-latin.woff2") format("woff2");
}
