/* /css/typography.css
   - owns all font-family rules
 */

:root {
  --font-heading: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

body {
  font-family: var(--font-body);
}

h1 {
  font-family: var(--font-heading);
  line-height: 1.12;
  font-weight: 600;
}

h2 {
  font-family: var(--font-heading);
  font-weight: 500;
}

h3 {
  font-family: var(--font-heading);
  font-weight: 400;
}