/*
  Local Fonts Definition
  Quicksand & Trajan Pro
*/

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

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

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

@font-face {
  font-family: 'Quicksand';
  src: url('../fonts/Quicksand-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: block;
}

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

/* Alias: Quicksands (plural) */
@font-face {
  font-family: 'Quicksands';
  src: url('../fonts/Quicksand-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 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 Quicksand is used globally
*/
:root {
  --font-family-sans-serif: 'Quicksand', sans-serif;
  --bs-body-font-family: 'Quicksand', sans-serif;
}

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

/* Utility class */
.font-quicksand {
  font-family: 'Quicksand', sans-serif !important;
}

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