/*
 * Place licensed Gotham font files in this same directory.
 * Expected filenames:
 * - Gotham-Book.ttf
 * - Gotham-Medium.ttf
 * - Gotham-Bold.ttf
 * - Gotham-Black.ttf
 * - Gotham-BoldItalic.ttf
 * - Gotham-BlackItalic.ttf
 */
@font-face {
  font-family: "Gotham";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    local("Gotham Book"),
    local("Gotham-Book"),
    url("./Gotham-Book.ttf") format("truetype");
}

@font-face {
  font-family: "Gotham";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src:
    local("Gotham Medium"),
    local("Gotham-Medium"),
    url("./Gotham-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Gotham";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src:
    local("Gotham Bold"),
    local("Gotham-Bold"),
    url("./Gotham-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Gotham";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src:
    local("Gotham Bold Italic"),
    local("Gotham-BoldItalic"),
    url("./Gotham-BoldItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Gotham";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src:
    local("Gotham Black"),
    local("Gotham-Black"),
    url("./Gotham-Black.ttf") format("truetype");
}

@font-face {
  font-family: "Gotham";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src:
    local("Gotham Black Italic"),
    local("Gotham-BlackItalic"),
    url("./Gotham-BlackItalic.ttf") format("truetype");
}
