/*
CSS for the normal weight and style file for a custom font.
Attempts to load the file locally first.
Use the line that loads a woff2 version of the font if you have the required file,
or else delete that line and just use the woff file loading line.
Uses font-display:swap; to help the loading process.
*/
@font-face {
font-family: "Gotham-Regular";
src: local("Gotham-Regular"),
url("https://more.com.uy/wp-content/webfont/Gotham-Regular.woff2") format("woff2");
font-weight: normal;
font-style: normal;
font-display: swap;
}

/*
Include an additional @font-face block for each font file in the family.
Change the font-weight and font-style value to match each font file
*/
@font-face {
font-family: "GothamBook";
src: local("GothamBook"),
url("https://more.com.uy/wp-content/webfont/GothamBook.woff2") format("woff2");
font-weight: normal;
font-style: normal;
font-display: swap;
 }

@font-face {
font-family: "Gotham";
src: local("Gotham"),
url("https://more.com.uy/wp-content/webfont/Gotham.woff2") format("woff2");
font-weight: normal;
font-style: italic;
font-display: swap;
}

@font-face {
font-family: "Gotham-Medium";
src: local("Gotham-Medium"),
url("https://more.com.uy/wp-content/webfont/Gotham-Medium.woff2") format("woff2");
font-weight: normal;
font-style: italic;
font-display: swap;
}

@font-face {
font-family: "Gotham-Italic";
src: local("Gotham-Italic"),
url("https://more.com.uy/wp-content/webfont/Gotham-Italic.woff2") format("woff2");
font-weight: normal;
font-style: italic;
font-display: swap;
}


@font-face {
font-family: "Gotham-Light";
src: local("Gotham-Light"),
url("https://more.com.uy/wp-content/webfont/Gotham-Light.woff2") format("woff2");
font-weight: 100;
font-weight: 200;
font-weight: 300;
font-weight: 400; /* normal */
font-weight: 500;
font-weight: 600;
font-weight: 700; /* bold */
font-weight: 800;
font-weight: 900;
font-display: swap;
}

@font-face {
font-family: "Gotham-LightItalic";
src: local("Gotham-LightItalic"),
url("https://more.com.uy/wp-content/webfont/Gotham-LightItalic.woff2") format("woff2");
font-weight: normal;
font-style: italic;
font-display: swap;
}

@font-face {
font-family: "Gotham-ItalicBold";
src: local("Gotham-ItalicBold"),
url("https://more.com.uy/wp-content/webfont/Gotham-ItalicBold.woff2") format("woff2");
font-weight: normal;
font-style: italic;
font-display: swap;
}

@font-face {
font-family: "Gotham-Thin";
src: local("Gotham-Thin"),
url("https://more.com.uy/wp-content/webfont/Gotham-Thin.woff2") format("woff2");
font-weight: lighter;
font-display: swap;
}

@font-face {
font-family: "Gotham-Ultra";
src: local("Gotham-Ultra"),
url("https://more.com.uy/wp-content/webfont/Gotham-Ultra.woff2") format("woff2");
font-weight: normal;
font-style: italic;
font-display: swap;
}

@font-face {
font-family: "Gotham-UltraItalic";
src: local("Gotham-UltraItalic"),
url("https://more.com.uy/wp-content/webfont/Gotham-UltraItalic.woff2") format("woff2");
font-weight: normal;
font-style: italic;
font-display: swap;
}

@font-face {
font-family: "Gotham-ExtraLight";
src: local("Gotham-ExtraLight"),
url("https://more.com.uy/wp-content/webfont/Gotham-ExtraLight.woff2") format("woff2");
font-weight: normal;
font-display: swap;
}

@font-face {
font-family: "Gotham-Black";
src: local("Gotham-Black"),
url("https://more.com.uy/wp-content/webfont/Gotham-Black.woff2") format("woff2");
font-weight: bolder;
font-display: swap;
}

@font-face {
font-family: "Gotham-Bold";
src: local("Gotham-Bold"),
url("https://more.com.uy/wp-content/webfont/Gotham-Bold.woff2") format("woff2");
font-weight: bold;
font-display: swap;
}

@font-face {
font-family: "Gotham-BookItalic";
src: local("Gotham-BookItalic"),
url("https://more.com.uy/wp-content/webfont/Gotham-BookItalic.woff2") format("woff2");
font-weight: normal;
font-style: italic;
font-display: swap;
}
