@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--text-main);
}

h1 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extrabold);
  letter-spacing: -0.03em;
}
@media (min-width: 768px) {
  h1 { font-size: var(--font-size-3xl); }
}

h2 { font-size: var(--font-size-xl); }
h3 { font-size: var(--font-size-lg); }

p {
  color: var(--text-muted);
  line-height: var(--line-height-base);
}

a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}