/* ============================================================
   VIC'S BOUTIQUE — Custom font overrides
   Cormorant Garamond: titles, product names, headings
   Josefin Sans: nav, labels, prices, buttons, small caps
   Roboto: body, descriptions (self-hosted, already loaded)
   ============================================================ */

/* --- Body base --- */
body {
  font-family: 'Roboto', sans-serif;
}

/* --- Titles & headings --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Dancing Script', cursive;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* --- Hero text stays bold/uppercase original --- */
.hero-section h1,
.hero-section h2,
.hero-section h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* --- Product name on product page --- */
.product-title {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* --- Nav links, labels, prices, buttons --- */
.navbar,
.navbar a,
.navbar .nav-link,
.btn,
.badge,
.product-price,
.accordion-button,
label,
.small-caps {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- Price --- */
.price, .product-price {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* --- Product card names on category/brand pages --- */
.card-title,
.product-card-name {
  font-family: 'Dancing Script', cursive;
  font-weight: 400;
}

/* --- Descriptions / body copy (keep readable) --- */
.product-description,
.accordion-body,
.text-muted {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0;
}
