/* Brand styles — see BRAND.md for the rationale behind every value. */
@import url('https://fonts.googleapis.com/css2?family=IM+Fell+Great+Primer&family=Noto+Sans+Meetei+Mayek:wght@400&display=swap');

:root {
  --text: #0d0604;
  --background: #fefbfa;
  --primary: #cc6646;
  --secondary: #9ae3b9;
  --accent: #62bed4;
}

html {
  font-size: 100%; /* 16px */
}

body {
  font-family: 'Noto Sans Meetei Mayek', -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--background);
}

h1, h2, h3, h4, h5 {
  /* IM Fell Great Primer has no 700 weight on Google Fonts — keep 400 (see BRAND.md) */
  font-family: 'IM Fell Great Primer', Georgia, serif;
  font-weight: 400;
}

h1 { font-size: 4.210rem; }  /* 67.36px */
h2 { font-size: 3.158rem; }  /* 50.56px */
h3 { font-size: 2.369rem; }  /* 37.92px */
h4 { font-size: 1.777rem; }  /* 28.48px */
h5 { font-size: 1.333rem; }  /* 21.28px */

small { font-size: 0.750rem; }  /* 12px */

a { color: var(--primary); }
