/* Typography System */
* {
  font-family: var(--font-primary);
}

body {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-black);
  font-weight: var(--font-weight-regular);
}

/* Headings */
h1, .h1 {
  font-size: var(--text-5xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin-bottom: var(--spacing-6);
}

h2, .h2 {
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--spacing-5);
}

h3, .h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
  margin-bottom: var(--spacing-4);
}

h4, .h4 {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  line-height: 1.4;
  margin-bottom: var(--spacing-3);
}

/* Paragraph styles */
p {
  margin-bottom: var(--spacing-4);
  line-height: 1.6;
}

.text-large {
  font-size: var(--text-lg);
}

.text-small {
  font-size: var(--text-sm);
}

.text-xs {
  font-size: var(--text-xs);
}

/* Font weights */
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }

/* Text colors */
.text-primary { color: var(--primary-red); }
.text-gray { color: var(--text-gray); }
.text-white { color: var(--white); }

/* Responsive typography */
@media (max-width: 768px) {
  h1, .h1 { font-size: var(--text-4xl); }
  h2, .h2 { font-size: var(--text-3xl); }
  h3, .h3 { font-size: var(--text-xl); }
}
