/* ============================================================
   Coffee & Contracts — Webfonts (licensed brand fonts)
   ------------------------------------------------------------
   • Perfectly Nineties (Light + Regular + Italic) — display /
       headline serif. Jen Wagner Co (.woff).
       Italic is for emphasizing a word or phrase only —
       never full sentences.
   • PP Neue Montreal (Regular + Medium) — body + caps grotesque
       Pangram Pangram (.otf).
   ============================================================ */

/* ---- Perfectly Nineties — display serif ---- */
@font-face {
  font-family: 'Perfectly Nineties';
  src: url('../assets/fonts/PerfectlyNineties-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Perfectly Nineties';
  src: url('../assets/fonts/PerfectlyNineties-Regular.woff') format('woff');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Perfectly Nineties';
  src: url('../assets/fonts/PerfectlyNineties-Italic.woff') format('woff');
  font-weight: 300 500;
  font-style: italic;
  font-display: swap;
}

/* ---- PP Neue Montreal — grotesque sans ---- */
@font-face {
  font-family: 'PP Neue Montreal';
  src: url('../assets/fonts/PPNeueMontreal-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Neue Montreal';
  src: url('../assets/fonts/PPNeueMontreal-Medium.otf') format('opentype');
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}
