// Brandon Grotesque
//
// The Brandon Grotesque font in a Sass format to be imported easily in any project.
//
// | Variable                                                                      | Default value                                     | Description                                                                          |
// | ----------------------------------------------------------------------------- | ------------------------------------------------- | ------------------------------------------------------------------------------------ |
// | <div class="egeo-u-tx-align--left">$egeo-brandon-text</div>               | <div class="egeo-u-tx-align--left">`true`</div>    | Tell to the framework wheter or not the font Brandon Grotesque have to be installed. |
//
// <div class="compatibility">This vendor uses @font-face. Check the compatibility [here](section-2.html#section-2.4).</div>
//
// ## Dependencies
//
// * [settings](section-2.html): This library uses the $egeo-fontface-src variable.
// * [tools.log](section-3.html#section-3.3): This library uses the logger tool to show debug info.
//
// Styleguide 4.2

// sass-lint:disable no-duplicate-properties
@if $egeo-brandon-text {
   // Regular
   @font-face {
      font-family: 'Brandon Text';

      src: url($egeo-fontface-src + '/brandon-text/BrandonText-Regular.eot');
      src: url($egeo-fontface-src + '/brandon-text/BrandonText-Regular.eot?#iefix') format('embedded-opentype'),
      url($egeo-fontface-src + '/brandon-text/BrandonText-Regular.woff') format('woff'),
      url($egeo-fontface-src + '/brandon-text/BrandonText-Regular.ttf') format('truetype'),
      url($egeo-fontface-src + '/brandon-text/BrandonText-Regular.svg#BrandonGrotesqueRegular') format('svg');
      font-weight: normal;
      font-weight: 400;
      font-style: normal;
   }

   // Bold
   @font-face {
      font-family: 'Brandon Text';
      src: url($egeo-fontface-src + '/brandon-text/BrandonText-Medium.eot');
      src: url($egeo-fontface-src + '/brandon-text/BrandonText-Medium.eot?#iefix') format('embedded-opentype'),
      url($egeo-fontface-src + '/brandon-text/BrandonText-Medium.woff') format('woff'),
      url($egeo-fontface-src + '/brandon-text/BrandonText-Medium.ttf') format('truetype'),
      url($egeo-fontface-src + '/brandon-text/BrandonText-Medium.svg#BrandonGrotesqueBold') format('svg');
      font-weight: normal;
      font-weight: 700;
      font-style: normal;
    }
}
