Steve,
Thank you so much for the kind words, it is always appreciated. 🙂
The default templates for your pages include the titles by default; however, we have been considering adding the option to turn them on or off for situations like this where users prefer to disable them. This is something we will work to address in a future version of the theme.
For now, you can add the following bit of code to the Custom section of the Customizer in the CSS box. This will allow you to hide the headings on your pages and achieve the look you’re going for:
.page .hentry .entry-header {
display: none;
}
.page .hentry .entry-content {
margin-top: 0;
}
Let us know if you need anything else!