/*Write Css*//* Load Jane Austen Font */
@font-face {
  font-family: 'JaneAusten';
  src: url('https://yourdomain.com/uploads/JaneAust.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Apply to whole website */
body, html {
  font-family: 'JaneAusten', cursive !important;
}

/* Ensure all text elements follow */
h1, h2, h3, h4, h5, h6,
p, span, a, li,
button, input, textarea, label, small {
  font-family: 'JaneAusten', cursive !important;
}