/* Site-wide font variables: Inter for UI, Playfair Display for headings */
:root{
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Playfair Display', 'Georgia', serif;
}

html,body{font-family:var(--font-sans) !important;}

h1,h2,h3,h4,h5,h6{
  font-family:var(--font-heading) !important;
  font-weight:600 !important;
  letter-spacing:0.01em;
}

/* small utility to ensure buttons/inputs inherit UI font */
button,input,textarea,select{font-family:var(--font-sans);}
