@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #C5A059;
  --prestige-black: #0A0A0A;
  --prestige-white: #F5F2ED;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--prestige-white);
  color: var(--prestige-black);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
}

.text-gold { color: var(--gold) !important; }
.bg-gold { background-color: var(--gold) !important; }
.border-gold { border-color: var(--gold) !important; }
.bg-prestige-black { background-color: var(--prestige-black) !important; }
.text-prestige-black { color: var(--prestige-black) !important; }
.bg-prestige-white { background-color: var(--prestige-white) !important; }
.text-prestige-white { color: var(--prestige-white) !important; }
