/* ============================================================
   fonts.css. Simon Ives / Phronesis
   Self-hosted only. No third-party requests: every font file is
   served from this origin. See README "Fonts" for where to get
   the files and which weights are required.
   ============================================================ */

/* ----- Cormorant Garamond: display -----
   H1/H2/H3, hero copy, pull quotes, the Φ mark, drop caps, ordinals.
   Weights used: 500 (all headings and the Φ mark at 600), plus
   400 italic for pull quotes. */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/cormorant-garamond/CormorantGaramond-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/cormorant-garamond/CormorantGaramond-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/cormorant-garamond/CormorantGaramond-SemiBold.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/cormorant-garamond/CormorantGaramond-Italic.woff2') format('woff2');
}

/* ----- Inter: body and UI -----
   Body copy, navigation, labels, metadata, buttons, form fields.
   Weights used: 400, 500. */

@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');
}

/* ----- Material Symbols: iconography -----
   Already present on the material-design-poc branch. Iconography,
   not type: does not count against the two-family rule.
   Used for: menu, contrast (theme toggle), arrow_outward. */

@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url('fonts/material-symbols/MaterialSymbolsOutlined-Variable.woff2') format('woff2');
}

.material-symbols {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  user-select: none;
}

/* STYLE_GUIDE.md §2 permits two families only, and --font-display is
   Cormorant Garamond, not Roboto or Roboto Flex. Do not declare them. */
