/* custom-fonts.css */
/* Gotham Font Family */

/* Regular/Book version of Gotham (TTF) */
@font-face {
    font-family: 'Gotham';
    src: url('/fonts/GothamBook.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  /* Medium version of Gotham (OTF) */
  @font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-Medium_1.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  /* Bold version of Gotham (OTF) */
  @font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-Bold_0.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }