/* FONTS — carga desde Google con fallbacks del sistema */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&family=Playfair+Display:wght@700&display=swap');

/* Fallbacks si Google Fonts no carga */
:root {
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

body {
  font-family: var(--font-body);
}
