/* Font loading and text styles */

/* Quattrocento font utility classes */
.quattrocento-regular {
  font-family: "Quattrocento", serif;
  font-weight: 400;
  font-style: normal;
}

.quattrocento-bold {
  font-family: "Quattrocento", serif;
  font-weight: 700;
  font-style: normal;
}

/* Lora font utility classes */
.lora-regular {
  font-family: "Lora", serif;
  font-weight: 400;
  font-style: normal;
}

.lora-medium {
  font-family: "Lora", serif;
  font-weight: 500;
  font-style: normal;
}

.lora-semibold {
  font-family: "Lora", serif;
  font-weight: 600;
  font-style: normal;
}

.lora-bold {
  font-family: "Lora", serif;
  font-weight: 700;
  font-style: normal;
}

.lora-italic {
  font-family: "Lora", serif;
  font-weight: 400;
  font-style: italic;
}

.lora-bold-italic {
  font-family: "Lora", serif;
  font-weight: 700;
  font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: var(--weight-semibold);
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
/* ...etc */