/*==========================================================================
CUSTOM FONTS - LOCAL FONT FACES
========================================================================== */

/* Verdana Regular */
@font-face {
  font-family: 'Verdana';
  src: url('../fonts/verdana.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap; /* Ensures text is visible during font load */
}

/* Verdana Bold */
@font-face {
  font-family: 'Verdana';
  src: url('../fonts/verdanab.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Verdana Italic */
@font-face {
  font-family: 'Verdana';
  src: url('../fonts/verdanai.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Baskerville Regular */
@font-face {
  font-family: 'Baskerville';
  src: url('../fonts/Baskerville.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Baskerville Regular (Alternative) */
@font-face {
  font-family: 'Baskerville';
  src: url('../fonts/BaskervilleBT.ttc') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Baskerville Bold */
@font-face {
  font-family: 'Baskerville';
  src: url('../fonts/baskerville_bt_bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Baskerville Bold Italic */
@font-face {
  font-family: 'Baskerville';
  src: url('../fonts/BaskervilleBoldItalicBT.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

