@font-face {
  font-family: 'CircularStd';
  font-weight: 400;
  font-style: normal;
  src: local('CircularStd'), url('CircularStd-Book.otf') format('opentype');
}
@font-face {
  font-family: 'CircularStd';
  font-weight: 500;
  font-style: normal;
  src: local('CircularStd'), url('CircularStd-Medium.otf') format('opentype');
}
@font-face {
  font-family: 'CircularStd';
  font-weight: 700;
  font-style: normal;
  src: local('CircularStd'), url('CircularStd-Bold.otf') format('opentype');
}

/* CSS to prevent Browser pull to refresh */
body {
  overscroll-behavior-y: contain;
  overflow: hidden;
}

#root {
  /* had to remove 100% height for scroll position to be read */
  /* height: 100vh; */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
