:root {
  --font-heading: 'Fredoka', sans-serif;
  --font-body: 'Atkinson Hyperlegible', system-ui, sans-serif;
  --text-sm: 16px;
  --text-base: 18px;
  --text-lg: 20px;
  --h4: 22px;
  --h3: 26px;
  --h2: 32px;
  --h1: 42px;
  --line-height-base: 1.6;
  --line-height-heading: 1.2;
}

body, p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--line-height-base);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: var(--line-height-heading);
}
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }

a, button, .btn {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
}
