/* System Font Stack - No External Requests */

/* 
 * Using native system fonts for maximum performance
 * - 0ms load time (fonts already on device)
 * - No external requests
 * - Looks native on each platform
 */

:root {
  /* Primary font stack - replaces Jost */
  --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  /* Serif font stack - replaces Playfair Display */
  --font-serif: "Georgia", "Times New Roman", Times, serif;
}

/* Apply to body and common elements */
body {
  font-family: var(--font-primary);
}

/* Headings use serif for elegance */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.banner-sec h3,
.banner-sec h5 {
  font-family: var(--font-serif);
}

/* Ensure buttons and UI elements use primary font */
button,
.button-3,
.btn {
  font-family: var(--font-primary);
}