/* Defining font parameters for custom fonts used */

@font-face {
	font-family: 'DIN2014WebBold';
	src: 
		url('din-2014_bold.woff2') format('woff2'),
		url('din-2014_bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
}

/*
- - - > |  @font-face  | < - - - 
*/
/* Klavika Web Basic Regular */
@font-face {
	font-family: 'KlavikaWebBasic';
	src: url('KlavikaWebBasicRegular.woff2') format('woff2'),
	     url('KlavikaWebBasicRegular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	}

/* Klavika Web Basic Regular Italic */
	@font-face {
	font-family: 'KlavikaWebBasic';
	src: url('KlavikaWebBasicRegularItalic.woff2') format('woff2'),
	     url('KlavikaWebBasicRegularItalic.woff') format('woff');
	font-weight: normal;
	font-style: italic;
	}

/* Klavika Web Basic Bold */
	@font-face {
	font-family: 'KlavikaWebBasic';
	src: url('KlavikaWebBasicBold.woff2') format('woff2'),
	     url('KlavikaWebBasicBold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	}

/* Klavika Web Basic Bold Italic */
	@font-face {
	font-family: 'KlavikaWebBasic';
	src: url('KlavikaWebBasicBoldItalic.woff2') format('woff2'),
	     url('KlavikaWebBasicBoldItalic.woff') format('woff');
	font-weight: bold;
	font-style: italic;
	}

/*
- - - > |  Font Classes  | < - - - 
*/
.DIN2014WebBold {
	font-family: 'DIN2014WebBold';
	font-weight: bold;
	font-style: normal;
	}

.KlavikaWebBasicRegular {
	font-family: 'KlavikaWebBasic';
	font-weight: normal;
	font-style: normal;
	}

.KlavikaWebBasicRegularItalic {
	font-family: 'KlavikaWebBasic';
	font-weight: normal;
	font-style: italic;
	}

.KlavikaWebBasicBold {
	font-family: 'KlavikaWebBasic';
	font-weight: bold;
	font-style: normal;
	}

.KlavikaWebBasicBoldItalic {
	font-family: 'KlavikaWebBasic';
	font-weight: bold;
	font-style: italic;
	}
