/*
// @see http://stackoverflow.com/questions/8338241/how-we-can-use-font-face-in-less
// @see http://www.latofonts.com/lato-free-fonts/
// @see https://www.google.com/fonts/specimen/Lato
*/

/* Webfont: Lato-Regular */@font-face {
  font-family: 'LatoWeb';
  src: url('Lato-Regular.eot'); /* IE9 Compat Modes */
  src: url('Lato-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url('Lato-Regular.woff2') format('woff2'), /* Modern Browsers */
  url('Lato-Regular.woff') format('woff'), /* Modern Browsers */
  url('Lato-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}

/* Webfont: Lato-Light */@font-face {
  font-family: 'LatoWebLight';
  src: url('Lato-Light.eot'); /* IE9 Compat Modes */
  src: url('Lato-Light.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url('Lato-Light.woff2') format('woff2'), /* Modern Browsers */
  url('Lato-Light.woff') format('woff'), /* Modern Browsers */
  url('Lato-Light.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "LatoWeb", sans-serif;
}

.lato-light {
  font-family: "LatoWebLight", "LatoWeb", sans-serif;
}
