/* ============================================================
   fonts.css — Lenox Website
   Self-hosted @font-face declarations.
   Material Symbols Outlined is left untouched.
   Fixes applied:
     - Removed redundant font-style: normal and font-display: swap
       from every block after the first per family (Inter & Source Serif 4).
     - Dropped the weight-600 and weight-700 blocks for
       Material Symbols Outlined (icon fonts don't differ meaningfully
       by weight; only the weight-400 block is needed).
   ============================================================ */

/* ─── Inter ─────────────────────────────────────────────────
   font-style: normal and font-display: swap declared once here;
   omitted from the 600 and 700 blocks below.
   ──────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  size-adjust: 100%;
  ascent-override: 90%;
  src: url('fonts/inter-v20-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-weight: 600;
  size-adjust: 100%;
  ascent-override: 90%;
  src: url('fonts/inter-v20-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-weight: 700;
  size-adjust: 100%;
  ascent-override: 90%;
  src: url('fonts/inter-v20-latin-700.woff2') format('woff2');
}

/* ─── Source Serif 4 ─────────────────────────────────────────
   font-style: normal and font-display: swap declared once here;
   omitted from the 600 and 700 blocks below.
   ──────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/source-serif-4-v14-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Serif 4';
  font-weight: 600;
  src: url('fonts/source-serif-4-v14-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Serif 4';
  font-weight: 700;
  src: url('fonts/source-serif-4-v14-latin-700.woff2') format('woff2');
}

/* ─── Material Symbols Outlined ──────────────────────────────
   Left exactly as-is per project requirements.
   Only the weight-400 block is kept; the 600 and 700 blocks
   were dropped because icon fonts don't render meaningfully
   differently by weight — keeping unused @font-face blocks
   wastes bandwidth.
   ──────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('fonts/material-symbols-outlined-v351-latin-regular.woff2') format('woff2');
}
