@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  margin: 0 0 var(--spacing-md);
  color: var(--primary-blue);
}

h1 {
  font-size: var(--text-7xl);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.2;
}

h2 {
  font-size: var(--text-5xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
}

h3 {
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
}

h4 {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-semibold);
  line-height: 1.4;
}

h5 {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  line-height: 1.4;
}

h6 {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
}

p {
  margin-bottom: var(--spacing-md);
}

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

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

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

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

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

.font-normal {
  font-weight: var(--font-weight-regular);
}

.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-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: var(--primary-blue);
}

.text-muted {
  color: rgba(51, 65, 85, 0.7);
}

.text-error {
  color: var(--error-red);
}

.text-success {
  color: var(--success-green);
}
