/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Playfair+Display:wght@500;600;700&display=swap');

html {
  scroll-behavior: smooth;
}

/* Base Typography */
html, body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #1f2937; /* Tailwind gray-800 */
}

/* Headings (serif for research feel) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Optional: smoother rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}