/* typography.css — Inter como fonte principal */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;450;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fonte-display);
  font-weight: 600;
  color: var(--texto-primario);
  margin: 0;
}

a { color: var(--texto-link); text-decoration: none; }
a:hover { color: var(--texto-link-hover); }

.font-mono { font-family: var(--fonte-mono); }
