The missing quotes helped! Thanks for your assistance.
The thing is the are still not showing the desired fonts:
.sqs-block-button-container, input.button.sqs-system-button.sqs-editable-button {
font-family: 'TR-909' !important;
}
SO I CHANGE IT TO THIS:
.sqs-block-button .sqs-block-button-element--medium{
font-family: 'TR-909' !important;
}
^^^ NOW the font is showing up on all buttons throughout the website.
This code changed the entire contact form to one font.
Goal is to have the form content to one font ('Gilroy-Medium') and the button to be another font ('TR-909'):
/* Contact Page - Contact Form */
div.form-block * {
font-family: 'TR-909' !important;
}