/* Font Strategy: 
   - Barlow for body text and general UI (clean, professional)
   - Philosopher for brand name and key headings (distinctive)
*/

body {
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  letter-spacing: -0.01em;
}

/* Brand styling */
.brand-name {
  font-family: 'Merriweather', serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-light)
}

/* Selective heading styling */
.hero-headline {
  font-family: 'Lexend', serif;
  letter-spacing: -0.025em;
}

/* Section headings */
section h2 {
  font-family: serif;
  letter-spacing: -0.025em;
}