/**
* Include Roboto Condensed font in your project
*
* Download Roboto Condensed ttf files from Google Fonts and place it in the same directory of this CSS file
* You can then use this font in your project by setting
* font-face: "Roboto Condensed", Helvetica, Arial, sans-serif;
*
* @author Mattia Migliorini (deshack)
* @license MIT
*/
 
/* Light */
@font-face {
font-family: "Roboto Condensed";
font-style: normal;
font-weight: 300;
src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'), url("RobotoCondensed/RobotoCondensed-Light.ttf") format('truetype');
}
@font-face {
font-family: "Roboto Condensed";
font-style: italic;
font-weight: 300;
src: local('Roboto Condensed Light Italic'), local('RobotoCondensed-LightItalic'), url("RobotoCondensed/RobotoCondensed-LightItalic.ttf") format('truetype');
}
 
/* Normal */
@font-face {
font-family: "Roboto Condensed";
font-style: normal;
font-weight: 400;
src: local('Roboto Condensed Regular'), local('RobotoCondensed-Regular'), url("RobotoCondensed/RobotoCondensed-Regular.ttf") format('truetype');
}
@font-face {
font-family: "Roboto Condensed";
font-style: italic;
font-weight: 400;
src: local('Roboto Condensed Italic'), local('RobotoCondensed-Italic'), url("RobotoCondensed/RobotoCondensed-Italic.ttf") format('truetype');
}
 
/* Bold */
@font-face {
font-family: "Roboto Condensed";
font-style: normal;
font-weight: 700;
src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url("RobotoCondensed/RobotoCondensed-Bold.ttf") format('truetype');
}
@font-face {
font-family: "Roboto Condensed";
font-style: italic;
font-weight: 700;
src: local('Roboto Condensed Bold Italic'), local('RobotoCondensed-BoldItalic'), url("RobotoCondensed/RobotoCondensed-BoldItalic.ttf") format('truetype');
}

/* Light */
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 300;
src: local('Roboto Light'), local('Roboto-Light'), url("Roboto/Roboto-Light.ttf") format('truetype');
}
@font-face {
font-family: "Roboto";
font-style: italic;
font-weight: 300;
src: local('Roboto Light Italic'), local('Roboto-LightItalic'), url("Roboto/Roboto-LightItalic.ttf") format('truetype');
}
 
/* Normal */
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 400;
src: local('Roboto Regular'), local('Roboto-Regular'), url("Roboto/Roboto-Regular.ttf") format('truetype');
}
@font-face {
font-family: "Roboto";
font-style: italic;
font-weight: 400;
src: local('Roboto Italic'), local('Roboto-Italic'), url("Roboto/Roboto-Italic.ttf") format('truetype');
}
 
/* Bold */
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 700;
src: local('Roboto Bold'), local('Roboto-Bold'), url("Roboto/Roboto-Bold.ttf") format('truetype');
}
@font-face {
font-family: "Roboto";
font-style: italic;
font-weight: 700;
src: local('Roboto Bold Italic'), local('Roboto-BoldItalic'), url("Roboto/Roboto-BoldItalic.ttf") format('truetype');
}