/* ============================================
   TYPOGRAPHY — Global fonts + text rules
============================================ */

@font-face {
  font-family: 'Lulo';
  src: url('../../fonts/LuloClean-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Avenir';
  src: url('../../fonts/Avenir-Light.woff2') format('woff2');
  font-weight: 300;
}

body {
  font-family: 'Lulo', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lulo', sans-serif;
  color: var(--accent);
  margin-bottom: 10px;
}

p {
  font-family: 'Avenir', sans-serif;
  color: var(--text-muted);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--accent);
}

a:hover {
  text-decoration: none;
}
