/*
 * Gotham Font Family - Standard Implementation
 *
 * All weights are grouped under the single 'Gotham' family name.
 * The browser selects the correct file based on the font-weight property.
 */

/* Gotham Light (300) */
@font-face {
  font-family: 'Gotham';
  src: url('Gotham-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Gotham Book/Regular (400) */
@font-face {
  font-family: 'Gotham';
  src: url('Gotham-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Gotham Medium (500) */
@font-face {
  font-family: 'Gotham';
  src: url('Gotham-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Gotham Bold (700) */
@font-face {
  font-family: 'Gotham';
  src: url('Gotham-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Gotham Black (800) */
@font-face {
  font-family: 'Gotham';
  src: url('Gotham-Black.woff2') format('woff2');
  font-weight: 800; /* Corrected from 700 */
  font-style: normal;
  font-display: swap;
}

/* Gotham Ultra (900) */
@font-face {
  font-family: 'Gotham';
  src: url('Gotham-Ultra.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}