/**
 * EdGEL Settings Layer
 */

@forward "colours";
@forward "brand";
@forward "variables";
@forward "icons";
@forward "bootstrap";
@forward "unset";
@forward "consent";

@use "brand" as edgel;

$brand: "red" !default;
$google-fonts: false !default;
$custom-font-path: null !default;

@mixin configure($brand: null, $google-fonts: null, $custom-font-path: null) {
  @if $brand {
    $brand: $brand !global;
  }
  @if $google-fonts {
    $google-fonts: $google-fonts !global;
  }
  @if $custom-font-path {
    $custom-font-path: $custom-font-path !global;
  }
}

@include edgel.configure(
  $brand: $brand,
  $google-fonts: $google-fonts,
  $custom-font-path: $custom-font-path
);
