/*
 * Hamper House — self-hosted brand fonts.
 *
 * Playfair Display (editorial serif headlines, product titles, the wordmark) +
 * Inter (body copy, UI labels, "Rs." pricing) 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 (600 headline through 700 display). 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");
}
