@charset "UTF-8";
/* CSS Document */
/*TODO: Add alternative font - Gibson can be hard to read on lower resolution screen (your laptop for example)*/
@font-face {
    font-family: 'Gibson'; /*a name to be used later*/
	font-style: normal;
    src: url('../fonts/Gibson-Regular.otf') format("opentype"); /*URL to font*/
}

@font-face {
    font-family: 'Gibson';
	font-weight: bold;
    src: url('../fonts/Gibson-SemiBold.otf') format("opentype"); /*URL to font*/
}

@font-face {
    font-family: 'GibsonBold'; /*a name to be used later*/
	font-weight: bold;
	font-style: normal;
    src: url('../fonts/Gibson-Bold.otf') format("opentype"); /*URL to font*/
}

@font-face {
    font-family: 'GibsonItalic';
    font-style: italic, oblique;
	src: url('../fonts/Gibson-Italic.otf') format("opentype");
}

@font-face {
    font-family: 'GibsonLight'; /*a name to be used later*/
	font-weight: lighter;
	font-style: normal;
    src: url('../fonts/Gibson-Light.otf') format("opentype"); /*URL to font*/
}

@font-face {
    font-family: 'GibsonBoldItalic';
    font-weight: bold;
    font-style: italic, oblique;
	src: url('../fonts/Gibson-BoldItalic.otf') format("opentype");
}

@font-face {
    font-family: 'GibsonLightItalic';
    font-weight: lighter;
    font-style: italic, oblique;
	src: url('../fonts/Gibson-LightItalic.otf') format("opentype");
}