/*
Generate Fonts Mixin
Use it like this: @include generatefont(Roboto, '/fonts/roboto', 300, normal)
*/
@mixin generatefont($font-family, $file-path, $font-weight: normal, $font-style: normal) {
  @font-face {
    font-family: $font-family;
      src: url('#{$file-path}.eot');
      src: url('#{$file-path}.eot?#iefix') format('embedded-opentype'),
           url('#{$file-path}.woff') format('woff'),
           url('#{$file-path}.ttf') format('truetype');
           //url('#{$file-path}.svg##{$font-family}') format('svg');
    font-weight: $font-weight;
    font-style: $font-style;
  }
}
/*Font Fallback mixin
Use it like this: @include font(Roboto);
*/
@mixin font($font){
	font-family: $font, Helvetica, sans-serif;
}
