/*
step 1 - get content of : https://fonts.googleapis.com/css?family=Roboto:400,700,700italic&subset=latin
step 2 - use only "Latin" groups
step 3 - modify src (to get local font)
*/
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src:	local('Roboto Regular'), local('Roboto-Regular'), 
		url(roboto-400-normal-latin.woff2) format('woff2'),
		url(Roboto-Regular.ttf) format('truetype');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src:	local('Roboto Bold'), local('Roboto-Bold'), 
		url(roboto-700-normal-latin.woff2) format('woff2'),
		url(Roboto-Bold.ttf) format('truetype');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src:	local('Roboto Italic'), local('Roboto-Italic'), 
		url(roboto-400-italic-latin.woff2) format('woff2'),
		url(Roboto-Italic.ttf) format('truetype');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
}