I found the problem. For some reason there was a filter added in the child theme’s functions.php that always blocked the Gutenberg editor from initiating. I have no recollection as to why it was there. I’m assuming that I was testing at some point in the past and forgot to take it out.
add_filter(‘use_block_editor_for_post’, ‘__return_false’, 10);
Sigh.