/*
  Local Fonts Definition
  Product Sans & Trajan Pro
*/

/* Product Sans - All weights (woff2 only, files located at /assets/fonts/) */
@font-face {
  font-family: 'Product Sans';
  src: url('../fonts/ProductSans-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Product Sans';
  src: url('../fonts/ProductSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Product Sans';
  src: url('../fonts/ProductSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Product Sans';
  src: url('../fonts/ProductSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

/* Trajan Pro */
@font-face {
  font-family: 'Trajan Pro';
  src: url('../fonts/TrajanPro-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Trajan Pro';
  src: url('../fonts/TrajanPro-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

/*
   Global Overrides
   Ensuring Product Sans is used globally
*/
:root {
  --font-family-sans-serif: 'Product Sans', sans-serif;
  --bs-body-font-family: 'Product Sans', sans-serif;
}

body {
  font-family: 'Product Sans', sans-serif !important;
}

/* Utility class */
.font-product-sans {
  font-family: 'Product Sans', sans-serif !important;
}

.trajan {
  font-family: 'Trajan Pro', serif !important;
}
