/* ===== MARTY'S PIZZA — FONTS =====
   CURRENT STATE: Loading from Google Fonts (Step B active).
   TO SELF-HOST (faster, no third-party request):
     1. Download the 5 .woff2 files listed below into /public/fonts/
        (see SETUP_GUIDE.txt "FONTS" section for the 2-minute how-to)
     2. Uncomment Step A below
     3. Delete the Step B @import line
*/

/* ── STEP A: SELF-HOSTED (uncomment when files are in /public/fonts/) ──
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../public/fonts/playfair-display-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../public/fonts/playfair-display-latin-900-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../public/fonts/lato-latin-300-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../public/fonts/lato-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../public/fonts/lato-latin-700-normal.woff2') format('woff2');
}
── END STEP A ── */

/* ── STEP B: GOOGLE FONTS (delete this line after completing Step A) ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Lato:wght@300;400;700&display=swap');
