/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap");

/* Typography utilities */
.font-display {
  font-family: "Playfair Display", serif;
}

.font-serif-alt {
  font-family: "Cormorant Garamond", serif;
}

.font-body {
  font-family: "Lato", sans-serif;
}

/* Custom Gradient Text */
.text-gold-gradient {
  background: linear-gradient(
    135deg,
    hsl(40 65% 70%),
    hsl(38 60% 55%),
    hsl(36 55% 38%)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
